home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 November: Tool Chest / Dev.CD Nov 98 TC.toast / Sample Code / Snippets / Sound / Speech Recognition sample / _headers / main.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-15  |  473 b   |  35 lines  |  [TEXT/CWIE]

  1. #ifndef __MAIN__
  2. #define __MAIN__
  3.  
  4. #include <String.h>
  5. #include <Speech.h>
  6.  
  7. #ifndef __TOOLBOX__
  8. #include "Toolbox.h"
  9. #endif
  10.  
  11. #ifndef __STRUCT__
  12. #include "Struct.h"
  13. #endif
  14.  
  15. #ifndef __SPEAKING__
  16. #include "Speaking.h"
  17. #endif
  18.  
  19. #ifndef __LISTENING__
  20. #include "Listening.h"
  21. #endif
  22.  
  23. #ifndef __LISTENINGAE__
  24. #include "ListeningAE.h"
  25. #endif
  26.  
  27. #ifndef __LANGUAGE__
  28. #include "Language.h"
  29. #endif
  30.  
  31. OSErr        SpeakWelcome        (void);
  32. OSErr        ListenToUser        (SpeechInfoPtr theSpeechInfo);
  33.  
  34. #endif
  35.